home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / util / gnu / bison_1_22.lha / bison-1.22 / print.ch < prev    next >
Text File  |  1995-01-20  |  848b  |  45 lines

  1. Changes for PRINT.C by Andreas Scherer, January 20, 1995.
  2.  
  3. @x l.21
  4. #include <stdio.h>
  5. #include "system.h"
  6. #include "machine.h"
  7. #include "new.h"
  8. #include "files.h"
  9. #include "gram.h"
  10. #include "state.h"
  11. @y
  12. #include <stdio.h>
  13. #include <stdlib.h>
  14. #include "system.h"
  15. #include "machine.h"
  16. #include "ansinew.h"
  17. #include "files.h"
  18. #include "gram.h"
  19. #include "state.h"
  20. @z
  21.  
  22. @x l.42
  23. extern void conflict_log();
  24. extern void verbose_conflict_log();
  25. extern void print_reductions();
  26.  
  27. void print_token();
  28. void print_state();
  29. void print_core();
  30. void print_actions();
  31. void print_grammar();
  32. @y
  33. void terse(void);
  34. void verbose(void);
  35. void print_token(int, int);
  36. void print_state(int);
  37. void print_core(int);
  38. void print_actions(int);
  39. void print_grammar(void);
  40.  
  41. extern void conflict_log(void);
  42. extern void verbose_conflict_log(void);
  43. extern void print_reductions(int);
  44. @z
  45.